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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Accessibility ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  color: #1a1a1a;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }

.eyebrow, .section-label {
  font-size: 0.7rem;
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b0dab;
  font-weight: 600;
}

/* ── Layout ───────────────────────────────────────────────────── */
.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease;
  border: none;
  font-family: inherit;
}
.btn:hover { opacity: 0.85; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary {
  background: #6b0dab;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: #6b0dab;
  border: 1.5px solid #6b0dab;
}

/* ── Navigation ───────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 36px; width: auto; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-icon {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #6b0dab;
  line-height: 1;
}

.nav-logo-text {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 0.875rem;
  color: #444;
  transition: color 0.15s;
}
.nav-links a:hover { color: #6b0dab; }

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b0dab;
  border: 1.5px solid #6b0dab;
  background: transparent;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle:hover { background: #6b0dab; color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  border-bottom: 1px solid #f0e8ff;
}
#hero .section-inner { padding-top: 80px; padding-bottom: 72px; }

.eyebrow { margin-bottom: 12px; }

#hero h1 { margin-bottom: 16px; }

.hero-sub {
  color: #555;
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Services ─────────────────────────────────────────────────── */
#services {
  background: #faf8ff;
  border-bottom: 1px solid #f0e8ff;
}

#services .section-label { margin-bottom: 8px; }
#services h2 { margin-bottom: 32px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #e8d5f5;
  border-radius: 8px;
  padding: 28px 24px;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: #555; }

/* ── About ────────────────────────────────────────────────────── */
#about {
  border-bottom: 1px solid #f0e8ff;
}

#about .section-label { margin-bottom: 8px; }
#about h2 { margin-bottom: 16px; }

.about-body {
  color: #555;
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.75;
}

/* ── Contact ──────────────────────────────────────────────────── */
#contact {
  background: #faf8ff;
}

#contact .section-label { margin-bottom: 8px; }
#contact h2 { margin-bottom: 8px; }

.contact-sub {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

#contact-form {
  max-width: 440px;
}

.field { margin-bottom: 14px; }

.field input,
.field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.15s;
  background: #fff;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #6b0dab;
}
.field textarea { resize: vertical; }

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

#contact-form .btn { margin-top: 6px; }

#contact-success {
  max-width: 440px;
  padding: 32px 0;
}
#contact-success h3 { margin-bottom: 8px; color: #6b0dab; }
#contact-success p { color: #555; }

/* ── Footer ───────────────────────────────────────────────────── */
#footer {
  background: #1a1a1a;
  padding: 20px 24px;
  text-align: center;
}
#footer p {
  color: #888;
  font-size: 0.8rem;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 24px;
    width: 100%;
  }
  .lang-toggle {
    margin: 8px 24px 12px;
  }

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