:root {
  --text: #111111;
  --muted: #666666;
  --line: #d7e4f1;
  --bg: #f8f8f6;
  --card: #ffffff;
  --blue: #0270c2;
  --blue-2: #006fc3;
  --light-orange: #ffa00b;
  --dark-orange: #ff8200;
  --dark-orange-2: #ff7e0a;
  --dark-blue: #013e86;
  --white: #ffffff;
  --green: #0F6E56;
  --green-light: #e6f4ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 220px);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1080px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand img {
  width: 183px;
  height: 100px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--dark-blue);
}

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

.hero {
  padding-block: clamp(4rem, 12vw, 8rem) 4rem;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--dark-blue);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 0.85rem;
  max-width: 16ch;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.05;
}

.lead {
  margin-top: 1.25rem;
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--dark-orange-2);
  background: linear-gradient(135deg, var(--light-orange), var(--dark-orange));
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.button:hover {
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-orange-2));
}

.text-link {
  text-decoration: none;
  color: var(--blue-2);
  font-size: 0.9rem;
}

.text-link:hover {
  color: var(--dark-blue);
}

.section {
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 1.4rem;
}

h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  max-width: 28ch;
}

p {
  margin: 0;
  color: var(--muted);
}

h3 {
  font-size: 1rem;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-item {
  background: var(--card);
  border: 1px solid #d3e3f3;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item summary {
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  user-select: none;
}

.accordion-trigger:hover {
  background: #f4f8fd;
}

.accordion-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.accordion-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.accordion-summary {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.2rem 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
}

.accordion-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 0.4rem !important;
}

.accordion-detail-block p:not(.accordion-label) {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 640px) {
  .accordion-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

ol {
  margin: 0;
  padding-left: 1.1rem;
}

ol li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

/* Leadership section */
.leader-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid #d3e3f3;
  border-radius: 10px;
  padding: 2rem;
  max-width: 820px;
}

.leader-photo-wrap {
  flex-shrink: 0;
}

.leader-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--line);
}

.leader-bio {
  flex: 1;
}

.leader-name-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.leader-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.leader-linkedin:hover {
  opacity: 1;
}

.leader-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.leader-credentials {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}

.leader-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact section */
.contact-lead {
  margin-top: 0.5rem;
}

#contact-form-wrap {
  margin-top: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.req {
  color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-privacy {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-thanks {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 480px;
  padding: 2rem;
  background: var(--green-light);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.thanks-icon {
  width: 48px;
  height: 48px;
}

.contact-thanks h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 0;
}

.contact-thanks p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.contact-alt {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-alt p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact ul,
.contact-alt ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.contact li,
.contact-alt li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.contact a,
.contact-alt a {
  color: var(--blue);
}

.contact a:hover,
.contact-alt a:hover {
  color: var(--dark-blue);
}

footer {
  padding-block: 1.5rem;
}

.footer-inner {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .service-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .leader-name-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1080px, calc(100% - 1.5rem));
  }

  nav {
    display: none;
  }

  .nav {
    min-height: 100px;
  }

  .brand img {
    width: 146px;
    height: 80px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    width: 120px;
    height: 120px;
  }
}
