:root {
  --navy: #071d35;
  --navy-2: #0b2b4d;
  --gold: #c4963e;
  --gold-2: #d7b46a;
  --ivory: #f8f5ef;
  --white: #ffffff;
  --text: #243044;
  --muted: #667085;
  --line: rgba(7, 29, 53, 0.12);
  --shadow: 0 24px 70px rgba(7, 29, 53, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
}

a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 190px; max-width: 44vw; display: block; }
nav { display: flex; gap: 24px; align-items: center; font-weight: 600; font-size: 14px; }
nav a { text-decoration: none; color: var(--navy); }
.nav-button {
  border: 1px solid var(--gold);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at top right, rgba(196, 150, 62, 0.22), transparent 34%),
    linear-gradient(135deg, var(--white), var(--ivory));
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 {
  color: var(--navy);
  margin: 0;
}
h1 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 900px;
}
h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h3 { font-size: 21px; }
.hero-text {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  max-width: 720px;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.primary-button { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.secondary-button { border: 1px solid var(--gold); color: var(--navy); background: rgba(255,255,255,0.5); }
.hero-card {
  background: var(--navy);
  color: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-card span { color: var(--gold-2); text-transform: uppercase; letter-spacing: 0.15em; font-size: 12px; font-weight: 800; }
.hero-card strong { display: block; font-size: clamp(26px, 4vw, 42px); line-height: 1.1; margin: 22px 0; font-family: Cinzel, Georgia, serif; }
.hero-card p { color: rgba(255,255,255,0.78); line-height: 1.7; }

.section { padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); }
.about-grid, .contact-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.about-grid p, .focus-section p, .markets p, .contact-section p { line-height: 1.75; font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.cards article, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(7, 29, 53, 0.08);
}
.cards article { min-height: 215px; }
.markets { background: var(--navy); color: rgba(255,255,255,0.82); }
.markets h2 { color: var(--white); }
.contact-card a { color: var(--navy); font-weight: 700; }
.full { width: 100%; margin-top: 14px; }
footer {
  padding: 34px clamp(20px, 5vw, 72px);
  background: #041426;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

@media (max-width: 840px) {
  nav a:not(.nav-button) { display: none; }
  .hero, .about-grid, .contact-section, .cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .brand img { width: 150px; }
}
