:root {
  /* Modern, dignified palette */
  --navy: #0b2a4a; /* primary */
  --slate: #2f3a44; /* body text */
  --stone: #f4f5f7; /* light bg */
  --cloud: #ffffff; /* white */
  --gold: #c3a763; /* accent */
  --sage: #e7ede8; /* soft accent bg */
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--slate);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 44px;
  height: 52px;
  border-radius: 10px;
  background: var(--cloud);
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 58, 68, 0.12);
  overflow: hidden;
}
.logo img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .title {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--navy);
}
.brand-text .subtitle {
  font-size: 0.82rem;
  color: #6b7280;
}

.menu {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.menu a {
  font-weight: 600;
  white-space: nowrap;
}
.menu form {
  margin: 0;
}

.cta {
  background: var(--navy);
  color: var(--cloud);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}
.cta.secondary {
  background: var(--gold);
  color: #1f2937;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, rgba(11, 42, 74, 0.08), rgba(11, 42, 74, 0.02)), url("./images/20250123_190927690_iOS.jpg") center/cover no-repeat;
}
.hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 550px;
  min-height: 70vh;
  padding-top: 12px;
}
.hero .wrap .text {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: rgba(244, 245, 247, 0.15);
  backdrop-filter: blur(8px);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 245, 247, 0.2);
  margin-left: 30px;
  margin-right: 5px;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--cloud);
  margin: 0 0 7rem 0;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.8;
  color: var(--cloud);
  margin: 0;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
}

.badge {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--sage);
  color: #334155;
  border: 1px solid #d2d8d3;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Info cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}

.card {
  background: var(--cloud);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.25rem;
}
.card h3 {
  margin-bottom: 0.35rem;
}
.card p {
  margin: 0.25rem 0 0;
  color: #4b5563;
}

/* Section blocks */
section {
  padding: 64px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.panel {
  background: var(--stone);
  border: 1px solid #eceff3;
  border-radius: 16px;
  padding: 1.5rem;
}

/* Footer */
footer {
  background: var(--navy);
  color: #e5e7eb;
  padding: 40px 0;
  margin-top: 24px;
}
footer a {
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
}

.small {
  font-size: 0.9rem;
  color: #cdd6df;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-rows: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .menu {
    gap: 0.75rem;
  }

  .brand-text .title {
    font-size: 1rem;
  }
  .brand-text .subtitle {
    font-size: 0.75rem;
  }

  section {
    padding: 48px 0;
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .brand {
    gap: 0.5rem;
    flex-basis: 100%;
  }

  .logo {
    width: 40px;
    height: 48px;
  }

  .menu {
    width: 100%;
    gap: 0.5rem;
    order: 3;
  }

  .menu form input[type="image"] {
    width: 110px;
    height: auto;
  }

  .brand-text .title {
    font-size: 0.95rem;
  }
  .brand-text .subtitle {
    font-size: 0.7rem;
  }

  .hero .wrap .text {
    padding: 2rem 1.5rem;
    margin-left: 15px;
    margin-right: 0;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin: 0 0 3rem 0;
  }

  .hero p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
  }

  section {
    padding: 40px 0;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .card {
    padding: 1rem;
  }

  .panel {
    padding: 1.25rem;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 10px 0;
    gap: 0.75rem;
  }

  .brand {
    gap: 0.4rem;
  }

  .logo {
    width: 36px;
    height: 44px;
  }

  .brand-text .title {
    font-size: 0.85rem;
    letter-spacing: 0;
  }
  .brand-text .subtitle {
    font-size: 0.65rem;
  }

  .menu {
    gap: 0.4rem;
  }

  .menu a {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }

  .menu form input[type="image"] {
    width: 90px;
    height: auto;
  }

  .hero .wrap {
    min-height: 50vh;
    padding-top: 8px;
  }

  .hero .wrap .text {
    padding: 1.5rem 1rem;
    margin-left: 10px;
    margin-right: 0;
    border-radius: 8px;
  }

  .hero h1 {
    font-size: clamp(1.25rem, 3.5vw, 1.8rem);
    margin: 0 0 2rem 0;
  }

  .hero p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  }

  section {
    padding: 32px 0;
  }

  h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1rem;
  }

  .cards {
    gap: 0.75rem;
    margin: 2rem 0;
  }

  .card {
    padding: 0.875rem;
    border-radius: 12px;
  }

  .card p {
    font-size: 0.9rem;
  }

  .panel {
    padding: 1rem;
    border-radius: 12px;
  }

  .container {
    padding: 0 14px;
  }

  .cta {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  .learn-more {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    margin-top: 12px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  footer {
    padding: 32px 0;
  }

  .small {
    font-size: 0.85rem;
  }
}

/*# sourceMappingURL=index.css.map */
