:root {
  --purple: #4a1a6b;
  --purple-deep: #2d0e4a;
  --purple-accent: #6b2e4f;
  --silver-light: #e8e9ec;
  --silver: #c5c6ca;
  --silver-dark: #7a7b80;
  --dc-dark: #0b1220;
  --dc-mid: #1a2130;
  --ink: #1a1a1e;
  --paper: #fafafa;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HERO ---------- */
.hero {
  display: block;
  width: 100%;
  background: var(--dc-dark);
  line-height: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  background: var(--dc-dark);
}

/* Visually hide h1 for SEO/a11y while keeping the composite image as the visual */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 5rem 0;
}

section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--purple);
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.nowrap { white-space: nowrap; }

section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 720px;
}

.intro {
  background: var(--paper);
}

.intro h2 {
  border-left: 4px solid var(--purple);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* ---------- SERVICES ---------- */
.services {
  background: linear-gradient(180deg, #fff 0%, #f3f3f6 100%);
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-list li {
  padding: 1.75rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--silver);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 26, 107, 0.12);
  border-color: var(--purple-accent);
}

.service-list h3 {
  color: var(--purple-deep);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.service-list p {
  font-size: 0.98rem;
  color: var(--ink);
  margin: 0;
}

/* ---------- CONTACT ---------- */
.contact {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: var(--silver-light);
}

.contact h2 {
  color: var(--silver-light);
  border-left: 4px solid var(--silver-light);
  padding-left: 1rem;
}

.contact p {
  color: var(--silver-light);
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 720px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  text-decoration: none;
  color: var(--silver-light);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 500;
  word-break: break-word;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--dc-dark);
  color: var(--silver-dark);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  text-align: center;
}

footer p {
  margin: 0;
  max-width: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-image {
    width: 100%;
    height: 50vh;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }
  .service-list { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-list li { padding: 1.25rem; }
}
