:root {
  --navy: #071a36;
  --blue: #0f315f;
  --red: #d90c2b;
  --cream: #f5f1ea;
  --white: #ffffff;
  --text: #101828;
  --muted: #667085;
  --line: #ded8ce;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--navy);
}

a { color: inherit; }

.header {
  min-height: 92px;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
}

.monogram {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 20px;
}

.brand-text {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 34px;
}

nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: 100px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}

.lang button.active {
  background: var(--navy);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: calc(100vh - 92px);
  background: var(--white);
}

.hero-image {
  background: #e4e0d8;
  min-height: 640px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
}

.hero-content {
  padding: 8vw 8vw 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: .96;
  margin: 0 0 28px;
}

.lead {
  max-width: 560px;
  color: #263246;
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 34px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 17px 25px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  font-weight: 900;
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.section {
  padding: 75px 6vw 85px;
  background: var(--cream);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-title h2,
.profile h2,
.contact h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
}

.grid article {
  padding: 42px;
  border-right: 1px solid var(--line);
}

.grid article:last-child { border-right: 0; }

.grid span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
}

.grid h3 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
  margin: 25px 0 16px;
}

.grid p {
  line-height: 1.7;
  color: #344054;
}

.profile {
  background: var(--navy);
  color: white;
  padding: 75px 8vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.profile h2 { color: white; }

.profile p:last-child {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}

.contact {
  padding: 75px 8vw;
  background: white;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.contact-card {
  border-left: 3px solid var(--red);
  background: var(--cream);
  padding: 34px;
}

.contact-card p {
  margin: 14px 0;
  color: #243047;
}

.contact-card a {
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,.82);
  text-align: center;
  padding: 28px 20px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .header {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 22px;
  }

  nav {
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 10px;
  }

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

  .hero-image {
    order: 2;
    min-height: 420px;
  }

  .hero-content {
    padding: 54px 26px 44px;
  }

  h1 { font-size: 42px; }

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

  .grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 34px 28px;
  }

  .grid article:last-child { border-bottom: 0; }

  .profile,
  .contact {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 58px 26px;
  }
}
