:root {
  --primary: #1a4548;
  --secondary: #ffe2c7;
  --bg: #f9f9f9;
  --text: #222;
  --text-light: #555;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav a {
  margin-left: 32px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  align-items: center;
  background: var(--white);
}

.hero-content {
  padding: 60px 0 60px 80px;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-content .lead {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 480px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #123436;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background: #f8d9a8;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--white);
}

h2 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

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

.service-card h3 {
  padding: 24px 24px 8px;
  font-size: 22px;
  color: var(--primary);
}

.service-card ul {
  padding: 0 24px 24px;
  list-style: none;
  color: var(--text-light);
}

.service-card li {
  padding: 4px 0;
}

/* Two column */
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.highlight-box {
  background: var(--primary);
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  font-size: 21px;
  line-height: 1.5;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 9999px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.team-member strong {
  display: block;
  font-size: 18px;
}

.team-member span {
  color: var(--text-light);
  font-size: 14px;
}

/* Jobs */
.job-box {
  background: var(--primary);
  color: var(--white);
  padding: 60px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

.job-box h3 {
  font-size: 28px;
  margin: 12px 0 24px;
}

.job-box ul {
  margin: 24px 0;
  padding-left: 20px;
}

.job-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-top: 40px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #a8c3c5;
  padding: 40px 0;
  font-size: 14px;
}

.site-footer a {
  color: #a8c3c5;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

/* Badge */
.badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
}