:root {
  --navy: #10263f;
  --navy-dark: #0a1a2c;
  --gold: #b8923f;
  --gold-light: #d4b06a;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --text: #1c1c1c;
  --text-muted: #5a6270;
  --max-width: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 700; }

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}

.logo span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1rem;
  margin-inline-start: 6px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-inline-start: 28px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.hero .subtitle {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 500;
}

.hero .tagline {
  font-size: 1.1rem;
  color: #d5dbe3;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

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

.section h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 36px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 36px;
}

.about { background: var(--bg-alt); }

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.placeholder-note {
  color: var(--text-muted);
  font-style: italic;
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 16px;
  text-align: start;
}

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

.service-card {
  background: var(--bg-alt);
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(16, 38, 63, 0.08);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.services-group-title {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 40px 0 20px;
  border-inline-start: 4px solid var(--gold);
  padding-inline-start: 12px;
}

.services-group-title:first-of-type {
  margin-top: 0;
}

.services-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 32px;
}

/* Contact */
.contact {
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.contact h2 { color: #fff; }

.contact p { color: #d5dbe3; margin-bottom: 32px; }

.contact-details {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.contact-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-value a {
  color: #fff;
  text-decoration: none;
}

.contact-value a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #9aa5b3;
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .nav a { margin-inline-start: 16px; font-size: 0.9rem; }
  .hero h1 { font-size: 2rem; }
  .contact-details { gap: 28px; }
}
