:root {
  --navy: #162449;
  --navy-deep: #0f1935;
  --navy-soft: #243052;
  --gold: #e6c75a;
  --gold-strong: #f1cf55;
  --ink: #171b26;
  --muted: #667085;
  --line: #e6e9ef;
  --page: #f7f7f9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.13);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  box-shadow: 0 12px 34px rgba(15, 25, 53, 0.18);
}

.nav-shell {
  width: min(1180px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  background: #101616;
  color: var(--gold);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand strong span {
  color: #e36e2a;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 12px 17px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .quote-button,
.primary-action {
  color: #18233b;
  background: var(--gold-strong);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.nav-links .quote-button:hover,
.primary-action:hover {
  background: #f5d869;
  color: #18233b;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: 840px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 31, 67, 0.7), rgba(18, 31, 67, 0.94)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.market-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 38px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.market-strip article {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.market-strip span,
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 12px;
}

.market-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
}

.market-strip small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.market-strip em {
  color: #ff7d75;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}

.market-strip em.up {
  color: #47d18c;
}

.hero-content {
  width: min(760px, calc(100% - 48px));
  margin: 210px auto 0;
  transform: translateX(-210px);
}

.pill {
  display: inline-flex;
  padding: 11px 22px;
  border: 1px solid rgba(230, 199, 90, 0.4);
  border-radius: 999px;
  background: rgba(230, 199, 90, 0.16);
  letter-spacing: 0.03em;
  text-transform: none;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-top: 28px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.95;
}

h1 span {
  color: var(--gold-strong);
}

.hero-content p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.footer-cta div {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action,
.inline-action {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 7px;
  font-weight: 800;
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.secondary-action.light {
  color: var(--white);
}

.hero-stats {
  width: min(760px, calc(100% - 48px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateX(-210px);
}

.hero-stats strong {
  padding: 26px 24px 0 0;
  font-size: 30px;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 600;
}

.section,
.partner-section,
.story-section,
.mission-section,
.values-section,
.services-detail,
.contact-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  text-align: center;
}

.section h2,
.partner-copy h2,
.page-hero h2,
.story-section h2,
.footer-cta h2,
.values-section h2,
.contact-info h2,
.contact-form h2 {
  margin-top: 13px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.08;
}

.section-lead {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.core-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 58px;
}

.service-card,
.values-grid article,
.mission-section article,
.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 25, 53, 0.05);
}

.service-card {
  text-align: left;
}

.icon,
.contact-info span,
.values-grid span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy-soft);
  background: #f1f3f7;
  font-size: 24px;
  font-weight: 800;
}

.icon.gold {
  color: var(--gold);
  background: rgba(230, 199, 90, 0.14);
}

.service-card h3,
.mission-section h3,
.values-grid h3 {
  margin: 26px 0 12px;
  font-family: var(--serif);
  font-size: 24px;
}

.service-card p,
.story-section p,
.partner-copy p,
.mission-section p,
.values-grid p,
.contact-info p {
  color: var(--muted);
  line-height: 1.6;
}

.inline-action {
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--white);
}

.partner-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.partner-image {
  position: relative;
}

.partner-image img,
.story-section img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: var(--shadow);
}

.partner-image strong {
  position: absolute;
  right: -24px;
  bottom: -24px;
  padding: 25px 36px;
  border-radius: 12px;
  color: #614b16;
  background: var(--gold-strong);
  font-family: var(--serif);
  font-size: 30px;
  box-shadow: var(--shadow);
}

.partner-image strong span {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 16px 0;
  padding-left: 34px;
  color: #394150;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 199, 90, 0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
}

.page-hero {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}

.page-hero h2,
.page-hero p {
  max-width: 800px;
}

.page-hero p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.6;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 0;
}

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 80px;
}

.dark-card {
  color: var(--white);
  background: var(--navy);
  border-color: transparent;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.66);
}

.values-section {
  padding: 72px 0 92px;
  text-align: center;
}

.values-grid article {
  min-height: 230px;
}

.services-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 72px 0 92px;
}

.service-card.large {
  min-height: 340px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  padding: 82px 0 92px;
}

.contact-info article {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.contact-info strong {
  display: block;
  margin-bottom: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form h2,
.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #2f3646;
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 9px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: 7px;
  color: #18233b;
  background: var(--gold-strong);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

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

.footer-cta {
  padding: 90px 24px 72px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.footer-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.6;
}

.footer-cta div {
  justify-content: center;
}

.footer-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-mark {
  width: 110px;
  height: 110px;
}

.footer-grid h3 {
  color: var(--gold);
  font-family: var(--serif);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 92px;
    display: none;
    padding: 18px;
    border-radius: 12px;
    background: var(--navy-deep);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .market-strip,
  .core-grid,
  .values-grid,
  .services-detail,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .hero-stats {
    transform: none;
  }

  .partner-section,
  .story-section,
  .mission-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section,
  .partner-section,
  .story-section,
  .mission-section,
  .values-section,
  .services-detail,
  .contact-section,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .market-strip,
  .core-grid,
  .values-grid,
  .services-detail,
  .hero-stats,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-top: 80px;
  }

  h1 {
    font-size: 48px;
  }

  .partner-image strong {
    right: 12px;
    bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
