:root {
  --navy: #0b1b32;
  --navy-deep: #06101f;
  --navy-mid: #163353;
  --gold: #c9a227;
  --gold-soft: #e8d48b;
  --ink: #1c2430;
  --muted: #5a6573;
  --line: #d8dee6;
  --paper: #f7f5f1;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(15, 39, 68, 0.12);
  --radius: 14px;
  --max: 1080px;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, 720px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247, 245, 241, 0.88);
  border-bottom: 1px solid rgba(216, 222, 230, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  text-decoration: none;
  color: var(--navy);
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  width: 2.6rem;
  height: auto;
  display: block;
  border-radius: 4px;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
}

@media (max-width: 520px) {
  .brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .brand-mark {
    width: 2.85rem;
  }
}


nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav-cta {
  color: var(--navy) !important;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.nav-cta:hover {
  border-color: var(--navy-mid);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(180deg, #f3f0ea 0%, var(--paper) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tagline {
  margin: 0.85rem 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--navy-mid);
  font-weight: 500;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(15, 39, 68, 0.22);
}

.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--navy-mid);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

.icon {
  flex-shrink: 0;
}

.contact-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-hint a {
  font-weight: 500;
}

.hero-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(216, 222, 230, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 1.4rem;
  overflow: hidden;
}

.card-accent {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

.card-title {
  margin: 0.35rem 0 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
}

.card-text {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.meta-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.meta-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
}

.meta-label {
  color: var(--muted);
  font-weight: 500;
}

.meta-value {
  color: var(--ink);
}

.about {
  padding: 3.5rem 0 4.5rem;
}

.about h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 600;
}

.about p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #efece6;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--navy-mid);
  text-decoration: none;
  font-weight: 500;
}

.footer-inner a:hover {
  text-decoration: underline;
}

.sep {
  margin: 0 0.45rem;
  opacity: 0.6;
}

@media (max-width: 860px) {
  .hero {
    padding-top: 3rem;
  }

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

  .hero-card {
    order: -1;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 1.5rem, var(--max));
  }

  .btn {
    width: 100%;
  }

  .meta-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
