:root {
  --navy-950: #071325;
  --navy-900: #0d1f3b;
  --navy-800: #183052;
  --gold-500: #b9934b;
  --gold-400: #cfb074;
  --slate-900: #111827;
  --slate-700: #374151;
  --slate-600: #475569;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --surface: #f8fafc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 19, 37, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at 10% 0%, rgba(185, 147, 75, 0.12), transparent 34%),
    radial-gradient(circle at 100% 16%, rgba(13, 31, 59, 0.10), transparent 28%),
    var(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2d6a4f;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.contact-details a:hover {
  color: var(--navy-900);
}

.section-divider {
  border-bottom: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.88);
}

.hero {
  padding: 88px 0 96px;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  align-items: end;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold-500);
  border: 1px solid rgba(207, 176, 116, 0.32);
  background: rgba(207, 176, 116, 0.12);
}

.section-label {
  color: var(--slate-600);
}

h1,
h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  line-height: 0.95;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.03rem;
  line-height: 1.8;
}

.lead {
  margin-top: 28px;
  max-width: 760px;
  font-size: 1.18rem;
}

.primary-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  padding: 14px 22px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.primary-link {
  margin-top: 36px;
}

.primary-link:hover,
button:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}

.highlight-card,
.quote-card,
.info-card,
.form-card {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.highlight-card,
.quote-card,
.form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(207, 176, 116, 0.22);
}

.highlight-card {
  padding: 28px;
}

.badge-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(207, 176, 116, 0.16);
  color: var(--gold-500);
  font-size: 1.1rem;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.split-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
}

.quote-card {
  padding: 28px;
}

.quote-card p {
  color: var(--navy-900);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
}

.section-contact {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--slate-200);
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.contact-details {
  margin-top: 28px;
  display: grid;
  gap: 6px;
}

.form-card {
  padding: 28px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
}

form {
  display: grid;
  gap: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-700);
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--slate-300);
  background: var(--white);
  padding: 14px 15px;
  color: var(--slate-900);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(13, 31, 59, 0.35);
  box-shadow: 0 0 0 4px rgba(13, 31, 59, 0.08);
}

textarea {
  resize: vertical;
}

.form-status {
  font-size: 0.95rem;
  color: var(--slate-600);
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .three-up,
  .two-up,
  .field-row {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 72px 0 84px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .brand {
    font-size: 1.45rem;
  }

  .brand img {
    width: 38px;
  }

  .highlight-card,
  .quote-card,
  .info-card,
  .form-card {
    padding: 22px;
    border-radius: 20px;
  }

  .primary-link,
  button {
    width: 100%;
  }
}