/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #0a1628;
  color: #f0f0f0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

a {
  color: #c9a84c;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e0c06a;
}

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-group svg {
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: #c9a84c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #8899aa;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #c9a84c;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.hero h1 {
  font-size: 3rem;
  color: #c9a84c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero .tagline {
  font-size: 1.35rem;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero .subtitle {
  font-size: 1.05rem;
  color: #8899aa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Section Headers ===== */
.section-title {
  font-size: 2rem;
  color: #c9a84c;
  margin-bottom: 0.5rem;
}

.section-rule {
  width: 60px;
  height: 2px;
  background-color: #c9a84c;
  border: none;
  margin-bottom: 2.5rem;
}

/* ===== About ===== */
.about-content {
  max-width: 800px;
}

.about-content p {
  margin-bottom: 1.25rem;
  color: #d0d0d0;
}

.about-content strong {
  color: #f0f0f0;
}

.focus-areas {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.focus-tag {
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: #c9a84c;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ===== Services ===== */
#services {
  background-color: #111f36;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2rem;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.service-card h3 {
  font-size: 1.15rem;
  color: #c9a84c;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #8899aa;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: #d0d0d0;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.2rem;
  color: #c9a84c;
  border: 1px solid #c9a84c;
  padding: 0.85rem 2.5rem;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-email:hover {
  background-color: #c9a84c;
  color: #0a1628;
}

/* ===== Footer ===== */
footer {
  background-color: #080e1a;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-disclosures {
  margin-bottom: 2rem;
}

.legal-disclosures h4 {
  font-size: 0.85rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.legal-details {
  list-style: none;
  color: #8899aa;
  font-size: 0.85rem;
  line-height: 2;
}

.legal-details li span {
  color: #6a7a8a;
}

.copyright {
  color: #5a6a7a;
  font-size: 0.8rem;
  border-top: 1px solid rgba(136, 153, 170, 0.1);
  padding-top: 1.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
  }

  nav {
    gap: 1.25rem;
  }

  .hero {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.5rem 0;
  }

  .focus-areas {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.65rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  nav a {
    font-size: 0.8rem;
  }
}
