:root {
  --primary-color: #ECDAB8;
  --background-color: #000000;
  --gold-accent: #B8860B;
  --transition-time: 0.3s;
}

body {
  background: var(--background-color);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.logo-container {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease-out forwards;
}

.logo-container img {
  max-width: 380px;
  height: auto;
}

h1 {
  display: none;
}

.tagline {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.tagline h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 2.2em;
  color: var(--primary-color);
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tagline h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.services {
  max-width: 900px;
  width: 100%;
  margin: 2rem 0 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards;
}

.services h3 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.5em;
  color: var(--gold-accent);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-item {
  padding: 1.5rem;
  border: 1px solid rgba(184, 134, 11, 0.2);
  text-align: center;
  transition: border-color var(--transition-time);
}

.service-item:hover {
  border-color: rgba(184, 134, 11, 0.5);
}

.service-item h4 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--primary-color);
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.service-item p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: rgba(236, 218, 184, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

footer {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

footer address {
  font-style: normal;
  color: var(--primary-color);
  margin: 1rem 0 1.5rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

footer address p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.6;
  text-align: center;
}

footer a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--gold-accent);
  text-decoration: none;
  position: relative;
  transition: var(--transition-time);
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: var(--transition-time);
}

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

footer a:hover::after {
  width: 100%;
}

footer > p {
  margin: 0.75rem 0 0;
  text-align: center;
}

footer > p:first-of-type {
  margin-top: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .tagline h2 {
    font-size: 1.8em;
  }
}
