:root {
  --navy: #0f1c33;
  --navy-deep: #0a1220;
  --navy-mid: #1a2d4d;
  --charcoal: #2a3548;
  --slate: #4a5568;
  --slate-muted: #6b7789;
  --ivory: #f7f5f0;
  --ivory-soft: #fcfbfa;
  --white: #ffffff;
  --accent: #b8954a;
  --accent-soft: rgba(184, 149, 74, 0.12);
  --accent-line: rgba(184, 149, 74, 0.45);
  --border: rgba(15, 28, 51, 0.08);
  --border-strong: rgba(15, 28, 51, 0.14);
  --shadow-sm: 0 12px 40px rgba(10, 18, 32, 0.05);
  --shadow-md: 0 24px 60px rgba(10, 18, 32, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --max-width: 1160px;
  --header-height: 80px;
  --section-space: clamp(5.5rem, 9vw, 7.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory-soft);
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(252, 251, 250, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.nav-mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  background: var(--navy-deep);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0 auto 0 0;
  padding: 0;
}

.nav-links a {
  color: var(--slate-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--navy);
}

.nav-cta {
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--ivory);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184, 149, 74, 0.1), transparent 45%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 6.5rem) 2rem clamp(5rem, 9vw, 7rem);
}

.hero-shell {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: end;
}

.hero-eyebrow {
  margin: 0 0 1.5rem;
  color: rgba(247, 245, 240, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.hero-headline {
  margin: 1.75rem 0 0;
  max-width: 36rem;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.65;
  color: rgba(247, 245, 240, 0.82);
  font-weight: 400;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 2rem 0 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 149, 74, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ivory);
  color: var(--navy-deep);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
}

.btn-ghost {
  border: 1px solid rgba(247, 245, 240, 0.28);
  color: var(--ivory);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(247, 245, 240, 0.08);
  border-color: rgba(247, 245, 240, 0.45);
}

.credential-panel {
  padding: 2rem 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 245, 240, 0.12);
  border-radius: calc(var(--radius) + 2px);
  backdrop-filter: blur(8px);
}

.credential-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.5);
}

.credential-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ivory);
}

.credential-org {
  margin: 0.35rem 0 0;
  color: rgba(247, 245, 240, 0.62);
  font-size: 0.94rem;
}

.credential-divider {
  height: 1px;
  margin: 1.5rem 0;
  background: rgba(247, 245, 240, 0.12);
}

.credential-stats {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.credential-stats div {
  display: grid;
  gap: 0.15rem;
}

.credential-stats dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.48);
}

.credential-stats dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.9);
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-tags li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 149, 74, 0.28);
  background: rgba(184, 149, 74, 0.1);
  color: rgba(247, 245, 240, 0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section {
  padding: var(--section-space) 2rem;
}

.section-alt {
  background: var(--ivory);
  border-block: 1px solid var(--border);
}

.section-dark {
  background: var(--navy-deep);
  color: var(--ivory);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  max-width: 46rem;
  margin-bottom: 3.5rem;
}

.section-header--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: end;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(184, 149, 74, 0.9);
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}

.section-dark .section-header h2,
.philosophy-intro h2 {
  color: var(--ivory);
}

.section-aside {
  margin: 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 22rem;
}

.section-intro {
  margin: 1.25rem 0 0;
  color: var(--slate);
  font-size: 1.08rem;
  max-width: 40rem;
}

.about-content {
  max-width: 52rem;
}

.about-lead {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--navy);
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.about-columns p,
.about-closer {
  margin: 0;
  color: var(--slate);
  font-size: 1.02rem;
}

.about-closer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-weight: 500;
  color: var(--charcoal);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.expertise-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.expertise-grid .expertise-card:nth-child(4),
.expertise-grid .expertise-card:nth-child(5) {
  grid-column: span 1;
}

.card-top {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.card-number {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

.expertise-card h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.expertise-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--navy-mid);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.philosophy-intro h2 {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 500;
}

.philosophy-quote {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-style: italic;
  color: rgba(247, 245, 240, 0.78);
}

.philosophy-grid {
  display: grid;
  gap: 1rem;
}

.philosophy-card {
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 245, 240, 0.1);
  border-radius: var(--radius-sm);
}

.philosophy-index {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.philosophy-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}

.philosophy-card p {
  margin: 0;
  color: rgba(247, 245, 240, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.client-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.client-icon {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}

.client-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.client-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.65;
}

.services-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item:hover {
  background: var(--ivory-soft);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.15rem;
}

.service-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy);
}

.service-body p {
  margin: 0;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 44rem;
}

.section-contact {
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--ivory);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-md);
}

.contact-copy .section-label {
  color: var(--accent);
}

.contact-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
}

.contact-copy p {
  margin: 1.25rem 0 0;
  color: rgba(247, 245, 240, 0.78);
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.7;
}

.contact-location {
  margin-top: 1.5rem !important;
  font-size: 0.9rem !important;
  color: rgba(247, 245, 240, 0.55) !important;
  letter-spacing: 0.03em;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.contact-detail,
.contact-linkedin {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 245, 240, 0.1);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.contact-linkedin {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.94rem;
  margin-top: 0.25rem;
  background: rgba(184, 149, 74, 0.12);
  border-color: rgba(184, 149, 74, 0.28);
}

.contact-detail:hover,
.contact-detail:focus-visible,
.contact-linkedin:hover,
.contact-linkedin:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(247, 245, 240, 0.22);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.48);
}

.contact-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.92);
}

.linkedin-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  flex-shrink: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
  color: var(--slate-muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
}

.site-footer a {
  font-weight: 600;
  color: var(--slate);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-header--split,
  .about-columns,
  .philosophy-layout,
  .contact-panel,
  .clients-grid {
    grid-template-columns: 1fr;
  }

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

  .section-aside {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: calc(var(--header-height) - 0.25rem);
    left: 1.25rem;
    right: 1.25rem;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open li {
    padding: 0.7rem 0.5rem;
  }

  .nav.is-menu-open .nav-cta {
    display: none;
  }

  .hero,
  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  .service-item {
    grid-template-columns: 3rem 1fr;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}