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

body {
  font-family: Arial, sans-serif;
  color: #111;
  background: #f5f3ef;
}

h1,
h2,
h3 {
  font-family: Georgia, serif;
  font-weight: 400;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 28px 72px;
  color: white;
}

.logo-main {
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: 6px;
}

.logo-sub {
  font-size: 13px;
  letter-spacing: 7px;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 48px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.btn-outline {
  display: inline-block;
  border: 1px solid #b88445;
  padding: 18px 32px;
  color: #c99555;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 140px 72px 80px;
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url("images/hero.jpg") center / cover no-repeat;

  transform: scale(1);
  animation: heroZoom 18s ease-in-out infinite alternate;

  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(3, 10, 15, 0.95) 0%,
    rgba(3, 10, 15, 0.8) 40%,
    rgba(3, 10, 15, 0.2) 100%
  );

  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.eyebrow {
  color: #c99555;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 30px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: #c99555;
  margin-bottom: 28px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  max-width: 470px;
  margin-bottom: 36px;
  color: #e6e2dc;
}

.section-light {
  background: #f5f3ef;
}

.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 64px 120px 64px 76px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  max-height: 360px;
  object-fit: cover;
}

.about-content {
  max-width: 720px;
}

.about-content h2,
.focus h2,
.insights h2 {
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 28px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.signature {
  font-family: cursive;
  font-size: 28px !important;
  margin-top: 18px;
  margin-bottom: 8px !important;
}

.founder {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  font-size: 12px !important;
  font-weight: 700;
}

.focus {
  padding: 30px 72px 48px;
}

.center {
  text-align: center;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
}

.focus-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid #ddd8d0;
}

.focus-item:last-child {
  border-right: none;
}

.icon {
  color: #c99555;
  font-size: 48px;
  margin-bottom: 18px;
}

.focus-item h3 {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.focus-item::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #c99555;
  margin: 20px auto 0;
}

.insights {
  background: #06131d;
  color: white;
  padding: 38px 72px 72px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.view-all {
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

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

.card {
  background: #071018;
}

.card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.date {
  color: #c99555;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 23px;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    background: #06131d;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 80px 28px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 48px 28px;
    gap: 40px;
  }

  .about-image img {
    max-width: 280px;
    max-height: 340px;
  }

  .focus {
    padding: 48px 28px;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .focus-item {
    border-right: none;
  }

  .insights {
    padding: 48px 28px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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