:root {
  --navy: #06172b;
  --navy-2: #0a2037;
  --gold: #b88436;
  --red: #e11925;
  --text: #07162b;
  --muted: #536172;
  --line: #e4e8ee;
  --paper: #ffffff;
  --soft: #fbfaf8;
  --max: 1180px;
  --shadow: 0 22px 70px rgba(6, 23, 43, 0.10);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
}

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

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

.site-header {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 10;
}

.brand img {
  width: 255px;
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}

.main-nav a:not(.nav-button) {
  position: relative;
  padding: 12px 0;
}

.main-nav a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 3px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.nav-button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(6, 23, 43, 0.22);
  background: #0b2744;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(28px, 1fr) minmax(0, calc(var(--max) * 0.47)) minmax(0, calc(var(--max) * 0.53)) minmax(28px, 1fr);
  border-top: 1px solid rgba(6, 23, 43, 0.05);
}

.hero-copy {
  grid-column: 2;
  padding: 92px 40px 86px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyeline {
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 30px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 400;
}

.hero p {
  margin: 34px 0 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 34px;
}

.hero-image {
  grid-column: 3 / 5;
  min-height: 610px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.75) 24%, rgba(255,255,255,0.08) 56%),
    url("https://images.unsplash.com/photo-1517090504586-fde19ea6066f?auto=format&fit=crop&w=2200&q=85") center right / cover no-repeat;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.kicker::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

.section-header p {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(6, 23, 43, 0.045);
  padding: 42px 34px;
  text-align: center;
  min-height: 270px;
}

.card-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border: 2px solid rgba(184, 132, 54, 0.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.card-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
}

.card h3 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.card .mini-line,
.contact-copy .mini-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto;
}

.card p {
  margin: 0;
  line-height: 1.7;
}

.contact-section {
  padding: 74px 0 78px;
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.contact-copy h2,
.page-section h2 {
  margin: 0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contact-copy .mini-line {
  margin-left: 0;
}

.contact-copy p {
  line-height: 1.75;
  font-size: 16px;
}

.form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

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

.req { color: var(--red); }

input,
textarea {
  width: 100%;
  border: 1px solid #cfd6df;
  background: #fff;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 2px;
  font: inherit;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 132, 54, 0.12);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success { color: #17693a; }
.form-status.error { color: #a51622; }

.site-footer {
  background: radial-gradient(circle at 50% 0%, #123454 0%, var(--navy) 55%);
  color: #fff;
  text-align: center;
  padding: 34px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  border-top: 1px solid rgba(6, 23, 43, 0.05);
  padding: 88px 0 72px;
}

.page-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.page-section {
  padding: 72px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.page-section p,
.page-section li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

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

.approach-item {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
}

.approach-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--navy);
  font-size: 28px;
}

.approach-item p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    width: min(var(--max), calc(100% - 36px));
    min-height: 86px;
  }

  .brand img { width: 210px; }
  .mobile-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.open { display: flex; }

  .main-nav a { padding: 14px 8px; }

  .nav-button { margin-top: 8px; }

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

  .hero-copy {
    grid-column: 2;
    padding: 72px 0 36px;
  }

  .hero-image {
    grid-column: 1 / 4;
    min-height: 340px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.88)),
      url("https://images.unsplash.com/photo-1517090504586-fde19ea6066f?auto=format&fit=crop&w=1600&q=85") center / cover no-repeat;
  }

  .container,
  .footer-inner {
    width: min(var(--max), calc(100% - 36px));
  }

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

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero h1,
  .page-hero h1 {
    font-size: 46px;
  }

  .section,
  .contact-section,
  .page-section {
    padding: 54px 0;
  }

  .card { padding: 34px 24px; }

  .form-actions { justify-content: stretch; }

  .form-actions .btn { width: 100%; }
}
