:root {
  --primary-color: #2f4f4f;
  --accent-color: #cfa72a;
  --text-color: #1f1f1f;
  --light-text: #f5f5f5;
  --bg-color: #f7f7f7;
  --card-bg: #ffffff;
  --max-width: 1100px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
}

.header-bar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.header-bar .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bar h1 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--primary-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-bar nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.header-bar nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.2s ease;
}

.header-bar nav a:hover {
  color: var(--accent-color);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  background: linear-gradient(rgba(18, 28, 28, 0.65), rgba(18, 28, 28, 0.65)),
    url('../Image_022.jpg') center/cover no-repeat;
  color: var(--light-text);
  text-align: left;
}

.hero .content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.hero h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  max-width: 30rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-color);
  color: #131313;
  text-decoration: none;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.2);
}

section {
  padding: 4.5rem 1.5rem;
}

section:nth-of-type(even) {
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-lead {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 650px;
  color: #505050;
}

.grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

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

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

.grid.three img {
  height: 220px;
  object-fit: cover;
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #444;
}

.highlight-list {
  display: grid;
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}

.highlight {
  background: rgba(207, 167, 42, 0.14);
  border-left: 6px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 16px;
}

.highlight h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
}

.stat {
  flex: 1 1 220px;
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
}

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

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.person {
  background: var(--card-bg);
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.person h3 {
  margin: 0 0 0.4rem;
  color: var(--primary-color);
}

.person .role {
  color: #555;
  margin-bottom: 0.6rem;
}

.person a {
  text-decoration: none;
  color: var(--accent-color);
  word-break: break-word;
}

.cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(47, 79, 79, 0.95), rgba(21, 35, 35, 0.95));
  color: var(--light-text);
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: #111;
  color: #dcdcdc;
  padding: 2.5rem 1.5rem;
}

footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-bar nav ul {
    display: none;
  }

  .hero {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}
