/* =============================================================
   COMPONENTS.CSS — All UI components
   Sanus Pharma · v20260525
   ============================================================= */

/* ─── GLASS CARD BASE ────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--t-base), color var(--t-base),
              transform var(--t-base), box-shadow var(--t-base),
              border-color var(--t-base);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(13, 79, 139, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(13, 79, 139, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--glass-border);
}

.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--secondary);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}

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

/* ─── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}

/* ─── SPLASH LOADER ──────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  animation: splashSafety 0.01s 4.5s forwards;
}

.splash.is-out {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.splash-logo {
  width: 72px;
  height: 72px;
  animation: splashLogoPulse 1.2s var(--ease-soft) infinite alternate;
}

.splash-bar {
  width: 160px;
  height: 2px;
  background: var(--bg-3);
  border-radius: 1px;
  overflow: hidden;
}

.splash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 1px;
  animation: splashBarGrow 1.8s var(--ease-soft) forwards;
}

.splash-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--accent);
  opacity: 0.7;
}

/* ─── MOUSE GLOW ─────────────────────────────────────────────── */
.mouse-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(115, 200, 255, 0.08) 0%,
    transparent 70%
  );
  transition: background 0.05s;
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--glass-border), 0 4px 24px rgba(13, 79, 139, 0.06);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-shield {
  width: 32px;
  height: 36px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 960px) {
  .nav-menu { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-link:hover {
  color: var(--accent);
  background: var(--bg-2);
}

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}

@media (min-width: 960px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem var(--container-pad);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-base), opacity var(--t-base);
  z-index: 999;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--bg-2);
  transition: color var(--t-fast), padding-left var(--t-base);
}

.nav-mobile-link:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.nav-mobile-cta {
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  border-bottom: none;
}

/* ─── HERO COMPONENTS ────────────────────────────────────────── */
.hero-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 25%, rgba(115, 200, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(13, 79, 139, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 90%, rgba(201, 231, 248, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 70%, rgba(115, 200, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(13, 79, 139, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, #f0f8ff 0%, #ffffff 45%, #e8f4fd 100%);
  filter: blur(50px) saturate(140%);
  animation: meshDrift 24s ease-in-out infinite;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 79, 139, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 79, 139, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 75%);
}

.hero-float {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 0;
}

.hero-float-1 {
  width: clamp(120px, 20vw, 240px);
  height: clamp(120px, 20vw, 240px);
  top: 15%;
  right: 8%;
  background: radial-gradient(circle, rgba(115, 200, 255, 0.25) 0%, transparent 70%);
  border: 1px solid rgba(115, 200, 255, 0.2);
  animation: floatOrbit1 18s ease-in-out infinite;
}

.hero-float-2 {
  width: clamp(80px, 12vw, 160px);
  height: clamp(80px, 12vw, 160px);
  bottom: 25%;
  right: 18%;
  background: radial-gradient(circle, rgba(201, 231, 248, 0.4) 0%, transparent 70%);
  border: 1px solid rgba(201, 231, 248, 0.4);
  animation: floatOrbit2 14s ease-in-out infinite;
}

.hero-float-3 {
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  top: 40%;
  right: 4%;
  background: rgba(13, 79, 139, 0.06);
  border: 1px solid rgba(13, 79, 139, 0.12);
  animation: floatOrbit3 20s ease-in-out infinite;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 1.75rem;
}

.hero-dot {
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  animation: heroDotPulse 2.5s ease-in-out infinite;
}

.hero-headline {
  margin-bottom: 1.75rem;
  max-width: 14ch;
  color: var(--dark);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll-hint span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  right: var(--container-pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--glass-border);
}

@media (max-width: 719px) {
  .hero-scroll-hint { display: none; }

  .hero-stats {
    left: var(--container-pad);
    right: var(--container-pad);
    justify-content: space-between;
    gap: 0.5rem;
    bottom: 1.75rem;
  }

  .hero-stat { align-items: flex-start; }

  .hero-stat-divider { display: none; }
}

/* ─── ABOUT SECTION ──────────────────────────────────────────── */
.about-content {
  display: flex;
  flex-direction: column;
}

.lead-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.body-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.about-img-frame:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
}

.badge-icon svg {
  width: 20px;
  height: 20px;
}

.badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── MISSION CARDS ──────────────────────────────────────────── */
.mission-card {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
}

.mission-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(13, 79, 139, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-card-icon svg {
  width: 36px;
  height: 36px;
}

.mission-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.mission-card-text {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ─── VALUE CARDS ────────────────────────────────────────────── */
.value-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
}

.value-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 79, 139, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.value-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── PROPOSITION CARDS ──────────────────────────────────────── */
.prop-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

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

.prop-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.prop-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.prop-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.prop-line { display: none; }

/* ─── TIMELINE ──────────────────────────────────────────────── */
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 959px) {
  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.timeline-marker {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 79, 139, 0.25);
  position: relative;
  z-index: 1;
}

.timeline-v {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}

.timeline-card {
  padding: 1.5rem;
  flex: 1;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── OBJECTIVE ──────────────────────────────────────────────── */
.objective-quote {
  border: none;
  padding: 0;
}

.objective-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
}

.objective-quote p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  bottom: 0.25em;
  width: 3px;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
  border-radius: 2px;
}

.pillar-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.pillar-card:hover {
  transform: translateX(6px);
  box-shadow: var(--glass-shadow-lg);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 79, 139, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.pillar-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── INFRASTRUCTURE ─────────────────────────────────────────── */
.infra-header-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.infra-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-card {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
}

.infra-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 79, 139, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.infra-card-icon svg {
  width: 24px;
  height: 24px;
}

.infra-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.infra-card-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PARTNER CARDS ──────────────────────────────────────────── */
.partner-card {
  padding: 2rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
}

.partner-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(13, 79, 139, 0.08);
  color: var(--accent);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.partner-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.partner-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.partner-card-inner {
  display: flex;
  flex-direction: column;
}

.partner-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── TEAM CARDS ─────────────────────────────────────────────── */
.team-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.team-card--lead {
  background: linear-gradient(135deg, rgba(13, 79, 139, 0.06) 0%, rgba(115, 200, 255, 0.12) 100%);
  border-color: rgba(13, 79, 139, 0.15);
}

@media (min-width: 960px) {
  .team-card--lead {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-lg);
}

.team-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.team-avatar-abbr {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  z-index: 1;
}

.team-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  opacity: 0.5;
  animation: ringPulse 3s ease-in-out infinite;
}

.team-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.team-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-intro {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 79, 139, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--t-fast);
}

.contact-detail-value:hover { color: var(--accent-hover); }

.contact-detail-value--soft {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.88rem;
}

/* ─── FORM ────────────────────────────────────────────────────── */
.contact-form-wrap {
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.form-input {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(115, 200, 255, 0.15);
}

.form-input.is-error {
  border-color: #e53e3e;
  background: #fff5f5;
}

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

.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  font-weight: 500;
  min-height: 1.2em;
}

/* Button states */
.btn[data-form-submit] .btn-sending,
.btn[data-form-submit] .btn-sent {
  display: none;
}

.btn[data-form-submit].is-sending .btn-label,
.btn[data-form-submit].is-sending .btn-sent {
  display: none;
}
.btn[data-form-submit].is-sending .btn-sending { display: inline; }

.btn[data-form-submit].is-sent .btn-label,
.btn[data-form-submit].is-sent .btn-sending {
  display: none;
}
.btn[data-form-submit].is-sent .btn-sent { display: inline; }
.btn[data-form-submit].is-sent {
  background: #38a169;
  border-color: #38a169;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--accent);
  font-weight: 500;
}

.form-success[aria-hidden="true"] { display: none; }

.form-success-icon {
  width: 56px;
  height: 56px;
}

.form-success-check {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: checkDraw 0.6s var(--ease-out) 0.3s forwards;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.footer-glass {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13, 79, 139, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(115, 200, 255, 0.1) 0%, transparent 55%);
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.footer-logo-shield {
  width: 32px;
  height: 36px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer-origin {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-nav-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.1rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer-nav-link:hover { color: var(--white); }

.footer-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
