:root {
  --color-navy: #1f2a38;
  --color-navy-deep: #16202c;
  --color-navy-hero: #111c27;
  --color-teal: #4f8f8b;
  --color-teal-soft: #7bb2ae;
  --color-text: #1f2933;
  --color-muted: #5b6773;
  --color-border: #d7e0e8;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f8fa;
  --color-surface-softer: #fafcfd;
  --color-white-muted: rgba(255, 255, 255, 0.78);
  --shadow-soft: 0 18px 50px rgba(17, 28, 39, 0.08);
  --shadow-panel: 0 28px 70px rgba(8, 15, 22, 0.28);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --container-narrow: 880px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

ul {
  margin-bottom: 0;
  padding-left: 1.1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 224, 232, 0.82);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 48px;
  width: auto;
}

.footer-logo {
  height: 34px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-navy);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--color-navy);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(79, 143, 139, 0.16), transparent 36%),
    linear-gradient(180deg, #182330 0%, #111c27 100%);
  color: #ffffff;
  padding: 3rem 0 7rem;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-pattern img {
  position: absolute;
  max-width: none;
  transform-origin: center;
  will-change: transform;
}

.hero-pattern-one {
  opacity: 0.16;
}

.hero-pattern-one img {
  width: 980px;
  right: -170px;
  top: -40px;
  animation: murmurationFloatOne 14s ease-in-out infinite;
}

.hero-pattern-two {
  opacity: 0;
}

.hero-pattern-two img {
  width: 760px;
  left: -120px;
  top: 140px;
  animation: murmurationFloatTwo 20s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-topmark {
  margin-bottom: 2.2rem;
}

.hero-logo {
  height: 96px;
  width: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 3rem;
  align-items: end;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.eyebrow-light {
  color: var(--color-teal-soft);
}

.hero h1,
.section-heading h2,
.statement-copy h2,
.contact-copy h2 {
  font-family: "Libre Baskerville", serif;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.hero-text {
  max-width: 48ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-white-muted);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-teal);
  color: #ffffff;
  border: 1px solid var(--color-teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #447f7c;
  border-color: #447f7c;
}

.button-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  width: min(100%, 390px);
  padding: 1.5rem 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(6px);
}

.hero-panel-label {
  margin-bottom: 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal-soft);
}

.hero-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-teal-soft);
}

.hero-panel-list li:first-child::before {
  top: 0.65rem;
}

.section {
  padding: 6rem 0;
}

.section-soft {
  background: var(--color-surface-soft);
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  color: var(--color-navy-deep);
  margin-bottom: 0;
}

.statement-copy h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  color: var(--color-navy-deep);
  margin-bottom: 1.5rem;
}

.section-heading-wide h2 {
  max-width: 15ch;
}

.section-intro {
  max-width: 66ch;
  margin-top: 1rem;
  color: var(--color-muted);
}

.intro-strip {
  border-bottom: 1px solid rgba(215, 224, 232, 0.75);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.mini-card h3 {
  color: var(--color-navy);
  font-size: 1.06rem;
  margin-bottom: 0.6rem;
}

.mini-card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.practice-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: 0 16px 40px rgba(17, 28, 39, 0.04);
}

.practice-card h3 {
  color: var(--color-navy);
  font-size: 1.14rem;
  margin-bottom: 1rem;
}

.practice-card ul {
  color: var(--color-muted);
}

.practice-card li + li {
  margin-top: 0.65rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.engagement-card {
  padding: 1.65rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.engagement-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-teal);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.engagement-card h3 {
  color: var(--color-navy);
  font-size: 1.12rem;
  margin-bottom: 0.7rem;
}

.engagement-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.statement-wrap {
  width: min(100% - 2rem, var(--container-narrow));
  margin: 0 auto;
}

.statement-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.statement-copy p {
  color: var(--color-muted);
  max-width: 62ch;
}

.statement-copy p + p {
  margin-top: 1rem;
}

.statement-points {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.statement-point {
  padding: 1rem 1rem 1rem 1.15rem;
  border-left: 3px solid var(--color-teal);
  background: var(--color-surface-soft);
  color: var(--color-navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-item {
  padding: 1.05rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.contact-text {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-label {
  min-width: 88px;
  color: var(--color-navy);
  font-weight: 700;
}

.contact-row a {
  color: var(--color-teal);
}

.contact-row a:hover,
.contact-row a:focus-visible {
  text-decoration: underline;
}

.contact-actions {
  padding-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid rgba(215, 224, 232, 0.82);
  padding: 1.5rem 0 2rem;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .statement-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .intro-cards,
  .practice-grid,
  .engagement-grid,
  .experience-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-aside {
    justify-content: flex-start;
  }

  .hero-panel {
    width: min(100%, 520px);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding: 4rem 0 4.8rem;
  }

  .hero-topmark {
    margin-bottom: 1.8rem;
  }

  .hero-logo {
    height: 60px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-pattern img {
    width: 760px;
    right: -260px;
    top: 20px;
  }

  .intro-cards,
  .practice-grid,
  .engagement-grid,
  .experience-list {
    grid-template-columns: 1fr;
  }

  .statement-card,
  .contact-panel,
  .practice-card,
  .engagement-card,
  .mini-card {
    padding: 1.35rem;
  }

  .footer-inner,
  .contact-row {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .statement-wrap {
    width: min(100% - 1.2rem, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    height: 60px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 4.7rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes murmurationFloat {

  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(-18px, -16px, 0) rotate(-2deg) scale(1.02);
  }

  50% {
    transform: translate3d(14px, -8px, 0) rotate(1.8deg) scale(1.025);
  }

  75% {
    transform: translate3d(-10px, -20px, 0) rotate(-1.2deg) scale(1.015);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

}

@keyframes murmurationFloatOne {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(-18px, -16px, 0) rotate(-2deg) scale(1.02);
  }

  50% {
    transform: translate3d(14px, -8px, 0) rotate(1.8deg) scale(1.025);
  }

  75% {
    transform: translate3d(-10px, -20px, 0) rotate(-1.2deg) scale(1.015);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes murmurationFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  25% {
    transform: translate3d(16px, 10px, 0) rotate(1.4deg) scale(1.01);
  }

  50% {
    transform: translate3d(-12px, 18px, 0) rotate(-1.8deg) scale(1.02);
  }

  75% {
    transform: translate3d(8px, 12px, 0) rotate(1deg) scale(1.01);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}