:root {
  --page-bg: #f3efe6;
  --ink: #17313f;
  --muted: #5d6b74;
  --hero-start: #123246;
  --hero-end: #28556f;
  --accent: #d9b56f;
  --card-bg: rgba(255, 255, 255, 0.84);
  --border: rgba(23, 49, 63, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 181, 111, 0.18), transparent 30%),
    linear-gradient(180deg, #f8f5ee 0%, #f1ebe1 100%);
}

h1,
h2,
h3,
.brand-mark {
  font-family: "Merriweather", serif;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.5;
}

.page-shell::before {
  width: 18rem;
  height: 18rem;
  background: rgba(217, 181, 111, 0.18);
  top: 5rem;
  right: -6rem;
}

.page-shell::after {
  width: 14rem;
  height: 14rem;
  background: rgba(18, 50, 70, 0.12);
  bottom: 14rem;
  left: -5rem;
}

.hero-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 50, 70, 0.96), rgba(40, 85, 111, 0.94)),
    radial-gradient(circle at top right, rgba(217, 181, 111, 0.2), transparent 35%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.navbar {
  padding-top: 1.2rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #fff;
}

.brand-mark {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.section-label {
  background: rgba(18, 50, 70, 0.08);
  color: var(--hero-start);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.82);
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-card,
.content-card,
.contact-banner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(18, 50, 70, 0.08);
}

.hero-card {
  color: var(--ink);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  right: -2rem;
  top: -3rem;
  background: radial-gradient(circle, rgba(217, 181, 111, 0.28), transparent 72%);
}

.hero-card__badge {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(217, 181, 111, 0.18);
  color: #7a5d25;
  font-size: 0.88rem;
  font-weight: 700;
}

.info-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.info-list li + li {
  margin-top: 0.65rem;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 0rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.content-card {
  padding: 1.5rem;
}

.content-card p {
  color: var(--muted);
}

.accent-card {
  background: linear-gradient(180deg, rgba(217, 181, 111, 0.18), rgba(255, 255, 255, 0.88));
}

.table th {
  width: 35%;
  color: var(--muted);
  font-weight: 700;
}

.table td a {
  color: var(--hero-start);
  font-weight: 700;
  text-decoration: none;
}

.table td a:hover {
  text-decoration: underline;
}

.contact-banner {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: start;
}

.btn-hero {
  background-color: #123246;
  color: #fff;
  border: none;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
}

.btn-hero:hover {
  background-color: #1a4563;
  color: #fff;
}

.footer {
  color: #fff;
  background: #102733;
}

@media (min-width: 992px) {
  .contact-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
