
:root {
  --navy: #071c34;
  --navy-2: #0d2a4d;
  --teal: #0f777c;
  --gold: #b89b55;
  --ink: #1a2433;
  --muted: #5f6b7a;
  --line: #e7e2d6;
  --paper: #fbfaf7;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 155, 85, 0.18);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  padding: 26px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.hero {
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 80% 15%, rgba(15,119,124,0.12), transparent 34%),
    radial-gradient(circle at 15% 90%, rgba(184,155,85,0.14), transparent 35%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-single {
  max-width: 880px;
  padding-right: 0;
}

.hero-single .hero-copy p:not(.eyebrow) {
  max-width: 760px;
}


.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.04em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(19px, 2vw, 24px);
  color: #344155;
  line-height: 1.5;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  border: 1px solid var(--navy);
}

.button.primary {
  background: var(--navy);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.button:hover {
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.hero-logo-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(184,155,85,0.24);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(7, 28, 52, 0.08);
}

.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 78px 0;
}

.section.muted {
  background: #f3f0e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(184,155,85,0.22);
  border-radius: 22px;
  padding: 28px;
  min-height: 220px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.statement {
  padding: 70px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.statement p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.25;
  margin: 0;
  color: var(--white);
}

.page-hero {
  padding: 86px 0 54px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(251,250,247,0)),
    radial-gradient(circle at 88% 10%, rgba(184,155,85,0.13), transparent 34%);
  border-bottom: 1px solid rgba(184,155,85,0.16);
}

.page-hero h1 {
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.focus-list {
  display: grid;
  gap: 24px;
}

.focus-list article {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(184,155,85,0.22);
  border-radius: 24px;
  padding: 34px;
}

.focus-list h2 {
  font-size: 28px;
}

.focus-list p:last-child {
  margin-bottom: 0;
}

.contact-card {
  max-width: 760px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(184,155,85,0.26);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: 0 18px 52px rgba(7,28,52,0.06);
}

.contact-mark {
  width: 122px;
  height: 122px;
  object-fit: contain;
  border-radius: 50%;
  flex: 0 0 auto;
}

.email-link {
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
}

.legal p {
  margin-bottom: 22px;
}

.site-footer {
  background: #071c34;
  color: rgba(255,255,255,0.82);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 50px;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #d9c37b;
}

.footer-note {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.footer-note p {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 4px;
  }

  .nav a {
    padding: 4px 0 10px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .hero-single,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-logo-card {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 38px;
  }

  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
