:root {
  --bg: #0f1724;
  --bg-soft: #161f2f;
  --muted: #f4f4f6;
  --text: #111827;
  --white: #ffffff;
  --accent: #e11d2a;
  --accent-dark: #c01420;
  --navy: #1b2538;
  --shadow: 0 10px 30px rgba(15, 23, 36, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

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

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #0e1624;
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-badge {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

.brand-text {
  font-size: 18px;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #d1d5db;
}

.nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(209, 213, 219, 0.3);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-accent,
.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover,
.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  border: 1px solid rgba(220, 226, 234, 1);
  color: #0f172a;
  background-color: rgba(235, 235, 235, 1);
}

.btn-ghost:hover {
  border-color: #0f172a;
  color: #0f172a;
}

.hero {
  background: linear-gradient(180deg, #141c2c 0%, #212a3b 100%);
  color: var(--white);
  padding: 72px 0;
}

.hero-inner {
  display: grid;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 10px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cbd5f3;
}

.subtext {
  color: #d6deef;
  margin-bottom: 18px;
}

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

.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.section-head p {
  color: #6b7280;
  font-size: 14px;
}

.section-subhead {
  text-align: center;
  margin: 34px 0 20px;
}

.section-subhead h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.section-subhead p {
  color: #6b7280;
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 20px;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-services-grid {
  margin-top: 32px;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}

.card .icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 13px;
  color: #6b7280;
}

.light {
  background: #f8f9fb;
}

.muted {
  background: #f3f4f6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  padding: 10px 16px;
  border-radius: 8px;
  background: #fdf5f5;
  border: 1px solid #f0dada;
  font-size: 13px;
  color: #4b5563;
}

.quote {
  background: #fef6f6;
}

.quote-name {
  display: block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 13px;
}

.quote-role {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

.process-grid {
  text-align: center;
}

.process-card {
  background: #1c2436;
  color: var(--white);
  padding: 18px 16px;
  border-radius: 8px;
}

.process-card h3 {
  margin: 10px 0 6px;
  font-size: 15px;
}

.process-card p {
  font-size: 12px;
  color: #cbd5e1;
}

.step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.profile {
  text-align: center;
}

.profile-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid #f1d6d9;
  box-shadow: 0 8px 16px rgba(15, 23, 36, 0.12);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fce9ea;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto 12px;
}

.role {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin: 6px 0 10px;
}

.profile-note {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

.profile-list {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
}

.profile-list li {
  position: relative;
  padding-left: 14px;
  text-align: left;
}

.profile-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.team-card ul {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  padding-left: 16px;
  color: #4b5563;
  font-size: 13px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-page .section.light {
  padding: 56px 0 40px;
  background: var(--white);
}

.contact-page .section-head {
  margin-bottom: 28px;
}

.contact-page .contact-info {
  padding-top: 6px;
}

.contact-page .info-item {
  gap: 14px;
}

.contact-page .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #f2c6cb;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
}

.contact-info {
  display: grid;
  gap: 22px;
  font-size: 14px;
  color: #4b5563;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.info-icon {
  font-size: 18px;
  color: var(--accent);
}

.info-item h3 {
  font-size: 15px;
  color: #111827;
  margin-bottom: 4px;
}

.contact-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.contact-page .contact-form {
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px 20px;
  margin-bottom: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

input,
textarea {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: #111827;
  box-shadow: 0 1px 2px rgba(15, 23, 36, 0.06);
}

.contact-page input,
.contact-page textarea {
  padding: 12px 14px;
}

.contact-page textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(225, 29, 42, 0.2);
  border-color: var(--accent);
}

input::placeholder,
textarea::placeholder {
  color: #9aa3b2;
}

.contact-page #message {
  color: rgba(255, 255, 255, 1);
  border-color: rgba(225, 29, 42, 1);
}

.contact-page .btn-primary {
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.map-section {
  padding: 20px 0 80px;
  background: #f5f7fb;
}

.contact-page .map-section {
  padding-top: 0;
}

.map-frame {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: var(--shadow);
}

iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.cta {
  background: var(--bg);
  color: var(--white);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta p {
  color: #cbd5e1;
  margin-top: 6px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 30px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 13px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid #2b3446;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 12px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0e1624;
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.25);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 6px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
