/* ============================================================
   Benzion Holdings — Brand Stylesheet
   Bridge Span direction · Navy #0E2A47 · Warm off-white #F4F1EA
   ============================================================ */

:root {
  --color-bg:        #F4F1EA;
  --color-navy:      #0E2A47;
  --color-blue:      #3B82C4;
  --color-sky:       #6AAEDD;
  --color-navy-dim:  rgba(14, 42, 71, 0.2);
  --color-muted:     rgba(14, 42, 71, 0.42);

  --font-primary:    'Archivo', system-ui, sans-serif;
  --transition:      0.25s ease;
}

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

html { font-size: 16px; }

body {
  background-color: var(--color-bg);
  color: var(--color-navy);
  font-family: var(--font-primary);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  text-align: center;
  animation: fadeUp 0.85s ease both;
}

/* ============================================================
   Logo — stacked (mark above wordmark)
   ============================================================ */

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  height: clamp(56px, 8vw, 72px);
  width: auto;
  color: var(--color-navy);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo-name {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  line-height: 1;
}

.logo-sub {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: clamp(0.58rem, 1.6vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--color-navy);
  opacity: 0.78;
  line-height: 1;
  margin-top: 0.65em;
}

/* ============================================================
   Divider
   ============================================================ */

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sky), var(--color-blue));
}

/* ============================================================
   Descriptor text
   ============================================================ */

.descriptor {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 38ch;
}

.descriptor-headline {
  font-size: clamp(0.72rem, 2vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.descriptor-body {
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA Button
   ============================================================ */

.cta {
  display: inline-block;
  padding: 0.85rem 2.75rem;

  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-navy);

  border: 1.5px solid var(--color-navy-dim);
  background: transparent;

  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.cta:hover,
.cta:focus-visible {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-bg);
  outline: none;
}

.cta:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

/* ============================================================
   Animation
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem; }
  .cta  { padding: 0.8rem 2rem; }
}
