.page-hero {
  position: relative;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #0b2434;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 36, 52, 0.75) 0%, rgba(11, 36, 52, 0.45) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.page-hero .eyebrow {
  color: #e6c878;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", "Open Sans", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.page-hero p {
  max-width: 700px;
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 8px;
}
.page-hero p.meta {
  color: #e6c878;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.page-content {
  padding: 60px 0 80px;
}
.page-content .richtext {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}
.page-content .richtext h2, .page-content .richtext h3, .page-content .richtext h4 {
  color: #142838;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}
.page-content .richtext p {
  margin-bottom: 18px;
}
.page-content .richtext img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.article-cta {
  padding: 35px;
  margin-top: 50px;
  border-left: 4px solid #b99a62;
  background: #f6f4f0;
  border-radius: 0 4px 4px 0;
}
.article-cta h2 {
  margin-bottom: 8px;
  font-size: 28px;
}
.article-cta p {
  margin-bottom: 20px;
  color: #64717a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e5df;
  border-radius: 2px;
  transition: box-shadow 0.28s, transform 0.28s;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.service-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card > div {
  padding: 26px;
}

.card-index {
  color: #b99a62;
  font-family: "Playfair Display", "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.service-card h3, .service-card h2,
.news-card h3,
.news-card h2 {
  margin: 9px 0 12px;
  font-family: "Playfair Display", "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}
.service-card p,
.news-card p {
  color: #64717a;
  font-size: 13px;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-card .meta {
  margin: 15px 0 8px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}
.category-nav a {
  padding: 8px 16px;
  border: 1px solid #dfe3e4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.28s;
}
.category-nav a:hover, .category-nav a.active {
  background: #092131;
  border-color: #092131;
  color: #fff;
}