:root {
  --navy: #102f5b;
  --gold: #cfa13b;
  --gold-dark: #9b7626;
  --cream: #fffaf0;
  --text: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
}

nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, rgba(16, 47, 91, 0.9), rgba(155, 118, 38, 0.8)),
    url("assets/lbs-logo.jpg") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: left;
  padding: 4rem 0;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #f7dea0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #132238;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn-secondary {
  border-color: #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--navy);
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--cream);
}

.grid-two {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

footer {
  background: var(--navy);
  color: #dbeafe;
  text-align: center;
  padding: 1.25rem 0;
}

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

  .grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
    display: none;
  }

  nav.open {
    display: flex;
  }

  .brand span {
    display: none;
  }
}
