:root {
  --bg: #f4f1ea;
  --ink: #1b2426;
  --muted: #5d6a6d;
  --accent: #c76833;
  --accent-dark: #96451f;
  --deep: #173644;
  --surface: #fffaf1;
  --line: #e5d6bd;
  --shadow: 0 14px 35px rgba(14, 32, 34, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 85% 0%, #ecd8bf 0 10%, transparent 11%),
    radial-gradient(circle at 12% 18%, #f4e4d1 0 12%, transparent 13%),
    var(--bg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid rgba(149, 134, 111, 0.22);
}

.top-nav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--deep);
}

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-title {
  font-family: "Prata", serif;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.brand-slogan {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d5f64;
}

.menu {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.menu a {
  text-decoration: none;
  color: #25444a;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  background: #e7f0ec;
  color: #16363b;
}

.lang-picker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.lang-picker select {
  border: 1px solid #c9ddd5;
  background: #f8fffc;
  color: #123940;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
}

.hero,
.sub-hero {
  color: #fff;
  background: linear-gradient(125deg, #183948, #285964 45%, #2f6f5f);
}

.hero {
  padding: 4.3rem 1.25rem 5.1rem;
}

.sub-hero {
  padding: 2.7rem 1.25rem 3.2rem;
}

.hero-content {
  max-width: 1150px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Prata", serif;
  margin-top: 0;
  color: #1d2c2f;
}

.hero h1,
.sub-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  margin-bottom: 0.75rem;
}

.hero-copy {
  margin: 0 0 1.4rem;
  max-width: 63ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta,
.ghost-btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.68rem 1.25rem;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta {
  background: var(--accent);
  color: #fff;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.page-main {
  max-width: 1150px;
  margin: -1.8rem auto 0;
  padding: 0 1.25rem 2.5rem;
}

.section {
  margin-bottom: 1.35rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.stats-grid,
.feature-grid,
.team-grid,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: "Prata", serif;
  font-size: 2rem;
  color: #22494f;
  margin: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 1rem;
}

.split-layout img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.spotlight-image {
  height: 440px;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  background: #101a1f;
  padding: 0.25rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 800;
  color: #194f66;
}

.team-grid,
.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.profile-grid {
  margin-bottom: 1rem;
}

.modern-team-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.team-member-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.team-member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 12px;
  display: block;
  margin-bottom: 0.75rem;
}

.team-member-card h3 {
  margin: 0 0 0.2rem;
}

.member-role {
  margin: 0;
  color: #385056;
  font-weight: 700;
}

.member-phone,
.member-email {
  margin: 0.25rem 0 0;
}

.member-phone {
  font-weight: 800;
  color: #1b444f;
}

.team-card,
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.85rem;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: 0.7rem;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.65rem;
  box-shadow: var(--shadow);
}

.profile-card img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center top;
  border-radius: 12px;
  display: block;
  background: #101a1f;
  padding: 0.25rem;
}

.team-card h3,
.feature-card h2 {
  margin-bottom: 0.35rem;
}

.team-card p {
  margin: 0.15rem 0;
}

.contact-layout {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-list {
  margin: 0.4rem 0 1.1rem;
  padding-left: 1.1rem;
}

.compact-card {
  padding-top: 0.9rem;
}

.process-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.market-list {
  margin: 0.5rem 0;
  padding-left: 1.1rem;
}

.source-note {
  font-size: 0.92rem;
  color: #4e5f63;
}

.news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
}

.news-card {
  border-left: 4px solid #dfbb8e;
}

.news-date {
  margin: 0;
  color: #5f6c70;
  font-size: 0.86rem;
  font-weight: 700;
}

.news-tag {
  display: inline-block;
  margin: 0.45rem 0;
  background: #e9f2ed;
  color: #22474b;
  border-radius: 999px;
  padding: 0.16rem 0.58rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.review-card {
  border-left: 4px solid #e6c8a2;
}

.review-author {
  font-weight: 800;
  color: #3d5559;
  margin-top: 0.55rem;
}

a {
  color: #1e5b72;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 1.2rem 1rem 2rem;
}

@media (max-width: 920px) {
  .top-nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .brand-slogan {
    font-size: 0.7rem;
  }

  .menu {
    justify-self: start;
  }

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

  .spotlight-image,
  .profile-card img {
    height: 320px;
  }

  .team-member-photo {
    aspect-ratio: 4 / 5;
  }
}
