*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --text: #e8eaed;
  --text-muted: #9ca3af;
  --accent: #e8b86d;
  --accent-dim: rgba(232, 184, 109, 0.15);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(
      ellipse 80% 50% at 50% -20%,
      var(--accent-dim),
      transparent
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 100%,
      rgba(232, 184, 109, 0.08),
      transparent
    );
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  margin-bottom: 3rem;
}

.logo {
  display: block;
  width: 252px;
  height: auto;
  margin: -45px auto 1.25rem;
  object-fit: contain;
}

.company-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}

.about {
  margin-bottom: 3rem;
}

.mission {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 1.25rem 0 0;
  font-style: italic;
}

.industries {
  margin-bottom: 3rem;
}

.industries-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.industries-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.industry {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.industry-name {
  display: block;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.industry-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.description strong {
  color: var(--accent);
  font-weight: 500;
}

.contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contact-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link:last-child {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .page {
    padding: 5rem 2rem 4rem;
  }

  .contact-link {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
