@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #f7f7f5;
  --white: #ffffff;
  --dark: #0d1724;
  --dark-soft: #172333;
  --accent: #c7a66a;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--white);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.main-nav a:hover {
  opacity: 1;
}

/* Hero */

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 15, 24, 0.97) 0%, rgba(7, 15, 24, 0.86) 48%, rgba(7, 15, 24, 0.58) 100%),
    linear-gradient(135deg, #24384b, #0d1724);
}

.hero-content {
  padding-top: 70px;
  max-width: 850px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  max-width: 800px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 650px;
  margin-top: 30px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--dark);
  background: var(--accent);
}

.button-primary:hover {
  background: #d4b579;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
}

/* Sections */

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-heading h2,
.fm-section h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

/* Process */

.section-dark {
  color: var(--white);
  background: var(--dark);
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 60px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.process-step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.process-step p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
}

/* Work */

.work-placeholder {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px dashed #cfd3d8;
  background: var(--paper);
  color: var(--muted);
}

/* FM section */

.section-accent {
  background: var(--paper);
}

.fm-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.fm-section > div:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.fm-section > div:last-child p + p {
  margin-top: 20px;
}

/* Contact */

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Footer */

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.6);
  background: var(--dark);
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Mobile */

@media (max-width: 800px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .section {
    padding: 80px 0;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .fm-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* Services */

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 440px;
  padding: 38px;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
  z-index: 2;
}

.service-number {
  display: block;
  margin-bottom: 45px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.service-card h3 {
  max-width: 460px;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.service-card > p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.service-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-highlight strong {
  font-size: 0.88rem;
}

.service-highlight span {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.service-card-secondary {
  background: var(--paper);
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 30px;
  }
}

