:root {
  --ink: #f4f7f5;
  --muted: #a9b7b8;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #081012;
  --white: #ffffff;
  --panel: #101b1e;
  --panel-soft: #142326;
  --green: #16a37f;
  --green-dark: #66d8bd;
  --amber: #d7a84f;
  --blue: #68a8d8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(22, 163, 127, 0.18), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(104, 168, 216, 0.12), transparent 28%),
    var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(8, 16, 18, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0f6f61);
  border-radius: 8px;
  font-size: 0.88rem;
}

.nav {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(115deg, rgba(8, 16, 18, 0.98), rgba(10, 58, 52, 0.88)),
    url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1900&q=82")
      center / cover;
  color: var(--white);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.25rem, 10vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0f6f61);
  box-shadow: 0 14px 34px rgba(22, 163, 127, 0.24);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.profile-card {
  overflow: hidden;
  background: rgba(16, 27, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.profile-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  object-position: center;
}

.profile-card-body {
  padding: 24px;
}

.profile-card-body strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.profile-card-body p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.metric {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.split,
.contact-layout,
.news-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
}

.section-copy,
.muted {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.image-feature,
.leadership-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b1517;
}

.image-feature img,
.leadership-strip img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-feature-copy,
.leadership-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px);
  background:
    linear-gradient(145deg, rgba(20, 35, 38, 0.96), rgba(8, 16, 18, 0.96)),
    radial-gradient(circle at top right, rgba(22, 163, 127, 0.15), transparent 35%);
}

.image-feature-copy p,
.leadership-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.value-band {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.1), rgba(8, 16, 18, 0.72)),
    #0d1719;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.value-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

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

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card,
.news-card {
  background: linear-gradient(180deg, rgba(20, 35, 38, 0.98), rgba(12, 22, 24, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  min-height: 280px;
  padding: 24px;
}

.card span {
  color: var(--amber);
  font-weight: 800;
}

.card p,
.news-meta {
  color: var(--muted);
}

.news-band {
  background:
    linear-gradient(115deg, rgba(10, 58, 52, 0.82), rgba(8, 16, 18, 0.94)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=82")
      center / cover;
}

.news-card {
  align-self: start;
  padding: 26px;
}

.news-card h3,
.sector-agent h3 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
  font-size: 0.9rem;
}

.news-card a {
  color: var(--green-dark);
  font-weight: 800;
}

.agent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.agent-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.agent-summary {
  margin: 0 0 18px;
  color: var(--muted);
}

.agent-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agent-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.agent-item strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.25;
}

.agent-item p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.agent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
  padding: 18px;
  background: linear-gradient(180deg, rgba(20, 35, 38, 0.98), rgba(12, 22, 24, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 92px;
  padding: 18px;
  border-top: 1px solid var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  text-align: left;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-button {
  cursor: pointer;
}

.contact-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.contact-card:first-child {
  border-top: 1px solid var(--line);
}

.contact-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0f6f61);
  border-radius: 8px;
  font-weight: 800;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: 1.08rem;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-form[hidden] {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.form-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-layout,
  .news-band,
  .image-feature,
  .leadership-strip {
    grid-template-columns: 1fr;
  }

  .leadership-strip img {
    order: -1;
  }

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

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
  }

  .expertise-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
