:root {
  --navy: #102235;
  --charcoal: #222629;
  --off-white: #f4f0e8;
  --paper: #fbfaf7;
  --muted: #667078;
  --line: rgba(16, 34, 53, 0.15);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
}

nav a,
.text-link {
  transition: opacity 180ms ease;
}

nav a:hover,
.text-link:hover {
  opacity: 0.6;
}

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

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.hero-intro {
  max-width: 560px;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-weight: 600;
}

.image-placeholder {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(16, 34, 53, 0.95), rgba(34, 38, 41, 0.65)),
    radial-gradient(circle at top right, #7d8b8c, #253746 58%, #102235);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-image {
  min-height: 620px;
  border-radius: 2px;
}

.about {
  padding: 150px 0;
  border-top: 1px solid var(--line);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 100px;
  align-items: end;
}

.about-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.team-image {
  min-height: 470px;
}

.contact {
  padding: 80px 0 120px;
}

.contact-card {
  background: var(--navy);
  padding: clamp(42px, 8vw, 96px);
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card a {
  color: var(--off-white);
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.55);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero,
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 48px;
  }

  .hero-image {
    min-height: 460px;
  }

  .about-content {
    gap: 56px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section,
  footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 72px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    padding: 64px 0 80px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .about {
    padding: 96px 0;
  }

  .hero-image,
  .team-image {
    min-height: 360px;
  }

  footer {
    flex-direction: column;
  }
}
