:root {
  --navy: #102033;
  --gold: #b9975b;
  --cream: #f7f3ea;
  --white: #ffffff;
  --text: #263238;
  --muted: #667085;
  --border: #e5e0d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
}

.logo small {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--navy);
}

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

.hero {
  background: linear-gradient(135deg, var(--navy), #1f3854);
  color: var(--white);
  padding: 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}

h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 20px;
}

h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}

.hero h2 {
  color: var(--white);
  font-size: 28px;
}

.hero-text {
  max-width: 680px;
  font-size: 20px;
  color: #e7edf5;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button,
.contact-form button {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

.primary,
.contact-form button {
  background: var(--gold);
  color: var(--navy);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: #eef3f8;
}

.hero-card li {
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}

.narrow {
  max-width: 850px;
}

.section p {
  font-size: 18px;
  color: var(--muted);
}

.shaded {
  background: var(--cream);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(16,32,51,0.06);
}

.card p {
  font-size: 16px;
}

.notice-section {
  padding-top: 0;
}

.notice {
  border-left: 5px solid var(--gold);
  background: var(--cream);
  padding: 32px;
  border-radius: 18px;
}

.notice h2 {
  font-size: 30px;
}

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

.contact h2 {
  color: var(--white);
}

.contact p {
  color: #dbe4ee;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-details {
  margin-top: 28px;
}

.contact-form {
  background: var(--white);
  color: var(--text);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form small {
  color: var(--muted);
}

.site-footer {
  background: #0b1725;
  color: var(--white);
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: #b8c2cc;
}

.site-footer a {
  margin-left: 20px;
  color: #d7dee7;
}

.site-footer a:hover {
  color: var(--gold);
}

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

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

  nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .section,
  .hero {
    padding: 64px 0;
  }

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

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 16px;
  }
}